home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / pcq12b.lzh / Include / Utils / SameName.i < prev    next >
Text File  |  1990-08-27  |  482b  |  17 lines

  1. {
  2.     SameName.i
  3.  
  4.     This include file contains only one function: SameName.
  5. This routine implements the simplest parts of AmigaDOS pattern matching.
  6. At this point that's just the  # and ? operators, plus the single quote ',
  7. which you place before a # or ? meant to be matched literaly.  Check out
  8. the AmigaDOS books for more information.
  9.     The source for this is in Runtime/Extras, and the object code
  10. is in PCQ.lib
  11. }
  12.  
  13.  
  14. Function SameName(Mask, Target : String) : Boolean;
  15.     External;
  16.  
  17.